import { Card, View, Text, useTheme } from '@aws-amplify/ui-react';
// use any CSS value
export const SizeStylePropExample = () => {
return (
);
};
// use a design token from the theme object
export const SizeThemeTokenExample = () => {
const { tokens } = useTheme();
return (
);
};
// use a design token name
export const SizeTokenNameExample = () => {
return (
);
};